From: Richard M. Stallman Date: Mon, 24 May 1993 05:06:35 +0000 (+0000) Subject: (menu-bar-mode): Doc fix. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~96053 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=dfd29450bf5f29e6daf0d27e6cc28410168e1b3d;p=emacs.git (menu-bar-mode): Doc fix. --- diff --git a/lisp/menu-bar.el b/lisp/menu-bar.el index 214b67a89a5..7494867bfa8 100644 --- a/lisp/menu-bar.el +++ b/lisp/menu-bar.el @@ -200,11 +200,11 @@ and selects that window." (defvar menu-bar-mode nil) (defun menu-bar-mode (flag) - "Toggle display of vertical scroll bars on each frame. + "Toggle display of a menu bar on each frame. This command applies to all frames that exist and frames to be created in the future. With a numeric argument, if the argument is negative, -turn off scroll bars; otherwise, turn on scroll bars." +turn off menu bars; otherwise, turn on menu bars." (interactive "P") (setq menu-bar-mode (if (null flag) (not menu-bar-mode) (or (not (numberp flag)) (>= flag 0))))